-
Re: Glyph Collector
Interesting tool indeed. Also thanks to Just van Rossum! http://glyphcollector.gaborkerekes.net/#acknowledge1 -
Re: RoboFont vs Glyphs…
The user wins because there is choice.10 -
Re: Another script to batch process fonts with TTFAutohint
I can’t comment on why the bash command is not working, but I suggest to do all the operations on file paths via the os.path module. This will make your code easier to recycle, and less Mac-centric. …1 -
Re: Another script to batch process fonts with TTFAutohint
Alternatively, you could also run the script from a RoboFab environment (i.e. FontLab, RoboFont) and make use of its built-in dialogs:from robofab.interface.all.dialogs import GetFolder root = GetFol…2 -
Re: Another script to batch process fonts with TTFAutohint
Hi Ramiro, Instead of letting the user input every filename one by one, you could also use the os module in Python to get access to the filesystem. Here is an example of a function that will collect …2